home *** CD-ROM | disk | FTP | other *** search
- /* FAreaList.br
- *
- * Get file area list for a bbs.
- */
-
- parse arg argument
-
- if(argument = '') then
- do
- say '$VER: FAreaList.br V3.1 (10.08.94)'
- say 'Template: BBSNAME/A'
- exit
- end
-
- if ~show('p', 'BBSREAD') then do
- address command
- "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
- "WaitForPort BBSREAD"
- end
-
- address BBSREAD
-
- GETFAREALIST stem FAREALIST argument
- if(rc ~= 0) then
- do
- say BBSREAD.LASTERROR
- exit
- end
-
- say 'Available file areas:'
-
- do i=1 to FAREALIST.COUNT
- say ' ' || FAREALIST.i
- end
-
- exit
-